home *** CD-ROM | disk | FTP | other *** search
/ SGI Desktop Special Edition 1.1 / SGI Desktop Special Edition 1.1.iso / dist / sgiperl.idb / usr / lib / perl / make.libs.z / make.libs
Encoding:
Text File  |  1995-11-13  |  414 b   |  25 lines

  1. #!/sbin/sh
  2. #
  3. #  Alright, compute them perl libs
  4.  
  5. chdir $rbase/usr/include
  6.  
  7. # sys and netinet are always going to be there, net and arpa maybe not.
  8.  
  9. chroot $rbase/ /usr/sbin/h2ph *.h sys/*.h netinet/*.h > /dev/null
  10.  
  11. if [ -d net ]
  12.   then
  13.   chroot $rbase/ /usr/sbin/h2ph net/*.h > /dev/null
  14. fi
  15.  
  16. if [ -d arpa ]
  17.   then
  18.   chroot $rbase/ /usr/sbin/h2ph arpa/*.h > /dev/null
  19. fi
  20.  
  21. # Poof!
  22.  
  23. rm $rbase/usr/lib/perl/make.libs
  24.  
  25.